Text File | 1995-08-19 | 976 b | 33 lines | [TEXT/ttxt]
on CustomInitDisk drive,name,bTreeSize
put NewPtrClear(24) into myHFS
--new record for HFSDefaults
put bTreeSize into HFSDefaults@.btClpSize
SysBeep 10
answer "Are you sure you want to inititialize the disk in drive #" & drive & "? NOTE: This will erase all data on the disk in drive #" & drive & "." with "Yes" or "Cancel"
if it="Yes" then
DiLoad
put myHFS into HFSDefaults -- low memory var
put "Formatting…"
get DiFormat(drive)
if it≠0 then
SysBeep 20
answer "Error of type" && it && "while formating disk. Press OK to continue"
end if
put "Verifying…"
get DiVerify(drive)
if it≠0 then
SysBeep 20
answer "This disk has bad sectors. (Error ID=" & it